home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / upc12bs1.zip / UUCICO / ulibfs.h < prev    next >
C/C++ Source or Header  |  1993-05-29  |  2KB  |  50 lines

  1. /*--------------------------------------------------------------------*/
  2. /*    u l i b f s . h                                                 */
  3. /*                                                                    */
  4. /*    FOSSIL (serial port) communications functions                   */
  5. /*--------------------------------------------------------------------*/
  6.  
  7. /*--------------------------------------------------------------------*/
  8. /*    Changes Copyright (c) 1990-1993 by Kendra Electronic            */
  9. /*    Wonderworks.                                                    */
  10. /*                                                                    */
  11. /*    All rights reserved except those explicitly granted by the      */
  12. /*    UUPC/extended license agreement.                                */
  13. /*--------------------------------------------------------------------*/
  14.  
  15. /*--------------------------------------------------------------------*/
  16. /*                          RCS Information                           */
  17. /*--------------------------------------------------------------------*/
  18.  
  19. /*
  20.  *    $Id: ULIBFS.H 1.1 1993/05/30 00:19:06 ahd Exp $
  21.  *
  22.  *    Revision history:
  23.  *    $Log: ULIBFS.H $
  24.  * Revision 1.1  1993/05/30  00:19:06  ahd
  25.  * Initial revision
  26.  *
  27.  */
  28.  
  29. extern int fopenline(char *name, BPS baud, const boolean direct);
  30.  
  31. extern unsigned int fsread(char *buffer,
  32.                           unsigned int wanted,
  33.                           unsigned int timeout);
  34.  
  35. int fswrite(const char *data, unsigned int len);
  36.  
  37. void fssendbrk(unsigned int duration);
  38.  
  39. void fcloseline(void);
  40.  
  41. void fSIOSpeed(BPS baud);
  42.  
  43. void fflowcontrol( boolean );
  44.  
  45. void fhangup( void );
  46.  
  47. BPS fGetSpeed( void );
  48.  
  49. boolean fCD( void );
  50.